@charset "utf-8";
@import url("sanitize.css");

html {
    font-size: 100%;
    font-family: "游ゴシック体", "Yu Gothic", "Yugothic", "sans-serif";
    scroll-behavior: smooth;
    /* font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
    font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
    /* box-sizing: border-box; */
    scroll-padding-top: 110px;
    font-weight: normal;

}

/* お約束で、画像が好き勝手に動かない */
img {
    max-width: 100%;
    height: auto;
  }

body {
    color: #333;
    max-width: 1920px;
    margin: auto;
    width: 100%;
}




/* -------------------------------------------------------- */



nav {
    /* margin: 0 auto; */
    /* width: 220px; */
    width: 100%;
    height: 100vh;
    /* border:  3px solid blue; */
    display: block;
    /* background-color: #fff; */
    background-color: black;
    position: fixed;
    top: -1000px;
    left: 0px;
    /* inset: 0; */
    /* bottom: 0; */
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
}

.open nav {
    /* left: 0; */
    top: 0;
    opacity: 1;
}

nav .inner {
    padding: 24px;
}

nav .inner ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    padding-top: 50px;
    max-width: 1980px;
}

nav .inner ul li {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid #333;
}

nav .inner ul li a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 14px;
    padding: 1rem;
    transition-duration: 0.2s;
}

nav .inner ul li a:hover {
    background-color: #e4e4e4;
}

.toggle_btn {
    /* border: 3px solid red; */
    background: transparent;
    border: none;
    display: block;
    position: fixed;
    top: 35px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 3;
    cursor: pointer;
}

.toggle_btn span {
    position: absolute;
    display: block;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
    border-radius: 4px;
}

.toggle_btn span:nth-child(1) {
    top: 4px;
}

.toggle_btn span:nth-child(2) {
    top: 19px;
}

.toggle_btn span:nth-child(3) {
    bottom: 4px;
}

.open .toggle_btn span {
    background-color: #fff;
    /* background-color:  #FF4500; */
}

.open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    transform: translateY(-20px) rotate(45deg);
}

#mask {
    display: none;
    transition: all 0.5s;
}

.open #mask {
    display: block;
    background-color: #333;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    opacity: 0.8;
}

.logo img {
    width: 60%;
}

header {
    position: sticky;
    top: 0;
}

/* ------------------------------------------------------------ */
.pc_nav {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 80px;
    background-image: url("../img/wasi_while.jpg");
    background-repeat: repeat;
    margin: 0;
}

.pc_nav li {
    /* width: 150px; */
    width: calc(100% / 6);
    text-align: center;
    position: relative;
    height: 80px;
    line-height: 80px;
}

.pc_nav li a {
    display: block;
    font-weight: bold;
    /* font-size: 24px; */
    /* font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem); */
    font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
    text-decoration: none;
    color: #333;
    /* color: #402000; */
    transition: all 0.5s;
}

.pc_nav li a:hover {
    /* opacity: 0.8; */
    /* color: #e2d6b2; */
    /* color: #804020; */
    color: #fff;
    /* border: 3px solid #333; */
    background-color: #333;
    
}

/*--------------------------------------------------------------- */
.container {
    display: flex;
    justify-content: center;
    gap: 5%;
}

.wrapper {
    /* border: 3px solid yellow; */
    max-width: 1200px;
    padding: 30px 0;
    margin: 0 auto;
}

.main_area {
    max-width: 65%;
    width: 100%;
}

.archive_area {
    max-width: 100%;
    width: 100%;
}

.main_picture img {
    width: 100%;
}

.content section {
    margin-bottom: 100px;
    padding: 10px;
}

/* side bar --------------------------------------------------------------- */
.side_area {
    max-width: 30%;
    width: 100%;
    /* border: 3px solid seagreen; */
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.info_list ,.blog_list ,.category_list {
    padding: 0;

    list-style: none;
}

.side_area h2 {
    text-align: center;
}

.info_list li , .blog_list li, .category_list li {
    padding: 10px;
    margin: 10px auto;
    border-bottom: 1px solid #333;
    width: 80%;
}

.info_list li a , .blog_list li a, .category_list li a {
    text-decoration: none;
}

.sec_archive h2 {
    text-align: center;
}

.side_area ul li {
    text-decoration: none;
    list-style: none;
}

/* content_02area----------------------------------------------------------- */

.sec_food {
    display: flex;
}

.img_box {
    max-width: 50%;
}

.text_box {
    max-width: 50%;
    padding: 20px;
    background-image: url(../img/wasi05.jpg);
}

.content02 {
    /* border: 3px solid hotpink; */
    max-width: 1200px;
    margin: 0 auto;
}

.sec_room {
    display: flex;
    flex-direction: row-reverse;
}

.plan_box {
    display: flex;
    justify-content: center;
    gap: 5%;
}

.sec_plan {
    margin: 50px auto;
}

.sec_plan h2 {
    text-align: center;
}

.plan_box .plan_banna  {
    max-width: 380px;
    width: 100%;
}

.plan_banna img {
    transition: all 0.5s;
}

.plan_banna img:hover {
    opacity: 0.8;
}


/* ----------------------------------------------------------------------- */

.sec_event h3 {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ------------------------------------------------------------------------ */

.content03 {
    /* border: 3px solid hotpink; */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

footer {
    background-image: url("../img/texture_01.jpg");
    font-size: 14px;
}


.footer_container {
    display: flex;
    justify-content: center;
    gap: 5%;
    padding: 10px 0;
}

.footer_tel {
    max-width: 150px;
    width: 100%;
} 

.footer_tel h3 {
    text-align: left;
}

.footer_nav  {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.footer_nav ul li {
    list-style: none;
    /* padding: 10px 0; */
    padding: 0em 0.3em 0.3em 1.3em;
    max-width: 160px;
    width: 100%;
    position:relative;
	/* padding: 0em 0.3em 0.3em 1.3em; */
}


.footer_nav ul li::before {
    position: absolute;
    content: '';
    top: 0.5em;
    left: 0.2em;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #333;
}


.footer_nav ul li a {
    text-decoration: none;
}

.copy {
    text-align: center;
    color: #fff;
    background-color: #333;
    margin: 0;
}

.footer_logo_img {
    max-width: 150px;
    width: 100%;
}

.footer_logo_img img {
    width: 100%;
}

.address {
    padding-top: 15px;
}

/* form --------------------------------------------------------------- */
table {
    border: black 1px   solid;
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.form_item {
    background-color: #eee;
    /* background-color: #A6703B; */
    text-align: left;
    width: 30%;
}

.form_body{
    width: 70%;
}

.w100 input ,.w100 textarea,#contact_id {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 2;
}

#contact_id {
    padding: 15px;
    cursor: pointer;
}

.form_item,.form_body {
    padding: 10px;
    border: 1px solid #ccc;
}

textarea {
    resize: none;
}

td {
    /* border: rgb(71, 236, 208) 3px   solid; */
    text-align: left;
}

.sub_btn {
    margin: 0 auto 30px ;
    /* ベンダープレフィックスを追加している */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    display: block;
    /* background-color: #777; */
    background-color: #477424;
    color: #fff;
    width: 200px;
    padding: 15px;
    border-radius: 100vh;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.5s;
}

.sub_btn:hover{
    /* background-color: #333; */
    opacity: 0.8;
}
.need {
    background-color: red;
    color: #fff;
    padding: 2px 3px;
    font-size: 0.7rem;
    margin-left: 5px;
}

/* single ---------------------------------------------------- */
.link {
    display: flex;
    justify-content: space-around;
}
/* ------------------------------------------------- */
@media screen and (max-width: 768px) {

    .wrapper {
        padding: 30px;
    }

    .grobal_nav {
        margin-bottom: 100px;
    }

    .grobal_nav .pc_nav {
        /* display: none; */
        flex-wrap: wrap;
    }

    .pc_nav li {
        width: 50%;
        gap: 5px;
        height: 50px;
        border: 0.5px solid #333;
        background-image: url(../img/wasi_while.jpg);
        line-height: 50px;
    }

    .container ,.sec_food ,.sec_room ,.plan_box {
        flex-direction: column;
    }

    .main_area ,.side_area,.img_box,.text_box {
        max-width:100%;
    }

    .footer_container {
        flex-direction: column;
        align-items: center;
    }

    .img_box {
        padding: 10px;
        margin: 0 auto;
    }

    .plan_box  {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    th.form_item,td.form_body,#contact_id {
        display: block;
        width: 100%;
        padding: 15px;
    }

}